home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 5 / Amiga Tools 5.iso / grafik / 3d & render tools / irit / man / man6 / time.6 < prev    next >
Text File  |  1996-07-16  |  520b  |  26 lines

  1. .TH TIME
  2.  6 "IRIT Version 6.0" 
  3. .SH NAME
  4. TIME
  5.  
  6.  
  7.  
  8.  TIME( NumericType Reset )
  9.  
  10. Returns the time in seconds from the last time TIME was called with
  11. Reset TRUE. This time is CPU time if such support is available
  12. from the system (times function), and is real time otherwise (time
  13. function).
  14. The time is automatically reset at the beginning of the execution of this
  15. program.
  16.  
  17. Example:
  18.  
  19.     Dummy = TIME( TRUE );
  20.       .
  21.       .
  22.       .
  23.     TIME( FALSE );
  24.  
  25. prints the time in seconds between the above two time function calls.
  26.